home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / TempoHelper / source code / IconsExtra.h < prev    next >
Text File  |  1997-06-28  |  514b  |  29 lines

  1. /*
  2.     This file contains some definitions from the original internal Apple version
  3.     of IconUtilsPriv.h that I use since they work around bugs in older systems.
  4. */
  5. enum
  6. {
  7.     largeIcon1 = 0,
  8.     largeIcon4,
  9.     largeIcon8,
  10.     smallIcon1,
  11.     smallIcon4,
  12.     smallIcon8,
  13.     miniIcon1,
  14.     miniIcon4,
  15.     miniIcon8,
  16.     aCIcon = 128
  17. };
  18.  
  19. #define IconSpace (miniIcon8 + 1)
  20. typedef struct
  21. {
  22.     unsigned short    type;
  23.     unsigned short    label;
  24.     Handle            table[IconSpace];
  25. } IconSuite;
  26.  
  27. typedef IconSuite *IconSuitePtr;
  28. typedef IconSuitePtr *IconSuiteHandle;
  29.